送信

Resolved Markets

@Elcara HQ

Connect any AI agent to live and historical Polymarket prediction-market orderbook data — BTC/ETH/SOL/XRP across 5m, 15m, 1h, and 1d timeframes — plus Hyperliquid perpetual orderbooks. 13 tools for listing markets, fetching live orderbooks, querying time-series snapshots, and aggregated market summaries. Use the hosted endpoint with your API key, or self-host via npm.
概要

Resolved Markets MCP Server

MCP server for Resolved Markets — connect Claude, GPT, or any AI agent to live and historical Polymarket prediction-market orderbook data, plus Hyperliquid perpetual orderbooks.

What you get

  • Crypto prediction markets — BTC, ETH, SOL, XRP across 5m / 15m / 1h / 1d timeframes
  • Live orderbooks — bid/ask arrays, spread, depth, by conditionId or slug
  • Historical time-series — paginated snapshots captured at ~20Hz for spread/depth analysis
  • Hyperliquid perps — live and historical perp orderbooks (Pro tier+)
  • Market discovery — categories, live markets, and closed/past markets

Get an API key at resolvedmarkets.com/api-keys, then add:

{
  "mcpServers": {
    "resolvedmarkets": {
      "command": "npx",
      "args": [
        "-y", "mcp-remote",
        "https://mcp.resolvedmarkets.com/mcp",
        "--header", "X-API-Key: rm_your_api_key_here"
      ]
    }
  }
}

Your tier and quota attach to your own key (free = BTC only + 24h history + 60 rpm; Pro = all crypto + Hyperliquid + 500 rpm; Enterprise = everything + 3000 rpm).

Self-hosted (npm)

{
  "mcpServers": {
    "resolvedmarkets": {
      "command": "npx",
      "args": ["-y", "@elcara-hq/resolvedmarkets-mcp"],
      "env": {
        "HF_API_URL": "https://api.resolvedmarkets.com",
        "HF_API_KEY": "rm_your_api_key_here"
      }
    }
  }
}

Tools

ToolDescription
list_categoriesDiscover tracked categories with market counts
list_marketsList live markets, optionally filtered by category
list_historical_marketsList closed/past markets (recent or full)
get_marketResolve a market by slug into conditionId + metadata
get_orderbookLive orderbook by conditionId or slug
get_market_summary7-day aggregated stats (price range, spreads)
get_snapshotHistorical orderbook state at a timestamp
get_latest_snapshotsThe 5 most recent snapshots (freshness check)
query_snapshotsPaginated time-series of snapshots (core analysis tool)
get_exchange_orderbookLive Hyperliquid perp orderbook (Pro+)
get_exchange_snapshotsHistorical Hyperliquid perp snapshots (Pro+)
get_system_statsSystem-wide stats (live markets, throughput, prices)

Resources

URIDescription
markets://liveCurrently active markets with token IDs and metadata
prices://latestCurrent crypto prices and dataset/exchange stats

Example queries

  • "What BTC prediction markets are live right now?"
  • "Show me the live orderbook for btc-updown-5m"
  • "Pull the last 500 snapshots for that market and analyze the spread trend"
  • "Compare the Polymarket BTC price to the Hyperliquid BTC perp"

サーバー設定

{
  "mcpServers": {
    "resolvedmarkets": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://mcp.resolvedmarkets.com/mcp",
        "--header",
        "X-API-Key: rm_your_api_key_here"
      ]
    }
  }
}
- MCP Server